home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tclMotif-1.4 / send / programs / tkSend3 < prev    next >
Text File  |  1995-06-29  |  295b  |  16 lines

  1. #!/pub/local/bin/wish -f
  2.  
  3. button .button -command incrementLabel -text 1
  4. pack .button -side left
  5.  
  6. proc incrementLabel {} {
  7.   set text [.button configure -text]
  8.   set value [lindex $text 4]
  9.   incr value
  10.   .button configure -text $value
  11.   if {$value < 20} {
  12.     send xmSend3 incrementLabel
  13.   }
  14. }
  15.  
  16.